home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Games Collection 1 / software vault.zip / software vault / CDR10 / YICN23.ZIP / INCLUDE / XLINE.H < prev    next >
C/C++ Source or Header  |  1992-11-18  |  903b  |  39 lines

  1. /*-----------------------------------------------------------------------
  2. ;
  3. ; XLINE - header file
  4. ;
  5. ;
  6. ;
  7. ; ****** XLIB - Mode X graphics library                ****************
  8. ; ******                                               ****************
  9. ; ****** Written By Themie Gouthas                     ****************
  10. ;
  11. ; egg@dstos3.dsto.gov.au
  12. ; teg@bart.dsto.gov.au
  13. ;
  14. ;  Terminology & notes:
  15. ;         VRAM ==   Video RAM
  16. ;         SRAM ==   System RAM
  17. ;         X coordinates are in pixels unless explicitly stated
  18. ;
  19. ;----------------------------------------------------------------------*/
  20.  
  21. #ifndef _XLINE_H_
  22. #define _XLINE_H_
  23.  
  24. extern "C" {
  25. /* FUNCTIONS =========================================================== */
  26.  
  27. extern void x_line(     /* Draw a line, what else */
  28.      WORD x0,
  29.      WORD y0,
  30.      WORD x1,
  31.      WORD y1,
  32.      WORD color,
  33.      WORD PageBase);
  34.  
  35. }
  36. #endif
  37.  
  38.  
  39.